home *** CD-ROM | disk | FTP | other *** search
/ Magazyn WWW 1999 July / www_07_1999.iso / prog / mac / alpha / alpha.hqx / Alpha ƒ / Help / Alpha Commands < prev    next >
Text File  |  1999-04-12  |  37KB  |  697 lines

  1. ==============================================================================
  2. = Alpha Commands
  3. ==============================================================================
  4.  
  5. In this list of routines, text between '<' and '>' is a placeholder for a 
  6. required parameter, text between '[' and ']' is a placeholder for an 
  7. optional parameter, and the '|' signifies a choice of two or more 
  8. alternatives.  A '+' signifies that the previous symbol can be present one 
  9. or more times, while a '*" means zero or more times.  Some commands have no 
  10. parameters, and are only expected to be called interactively.
  11.  
  12.  
  13.  
  14. The following are Alpha-specific tcl routines:
  15.  
  16. Ñ abbrev <label> <string> [<mode>] - register a label for <string>. See 
  17. 'execAbbrev'.
  18. Ñ abortEm - aborts whatever is currently happening
  19. Ñ addAlphaChars <chars> - Add <chars> to the list of characters that internally 
  20.   are caught by the 'isalnum' and 'isalpha' calls. Can be used to augment 
  21.   the list of characters that the \w pattern in a regular expression 
  22.   responds to. Use w/ care.
  23. Ñ addMenuItem [-m] [-l <meta-characters>] <menu name> <item name> - Convert
  24.   item to menu form and add to specified menu. If '-m' specified, menu 
  25.   form conversion not done. The '-l' option allows you to use menu meta 
  26.   characters as text of menu items. If the '-l' option is used, the 
  27.   <meta-characters> string is interpreted for menu item attributes, and 
  28.   meta-characters in <item name> are included in the menu item text 
  29.   literally. For example: 
  30.       addMenuItem -m -l "/B" "Hello/C" 
  31.   would appear as the text "Hello/C" in the menu, and have "B" as its 
  32.   command equivalent.
  33. Ñ addDef <var> <val> - Permanently save an association between the var 
  34.   'var' and 'val'. 'addDef' and 'addArrDef' are now the sanctioned way to 
  35.   save values between sessions. Also see 'removeDef' and 'removeArrDef'.
  36. Ñ addArrDef <var> <field> <val> - Permanently save an association between 
  37.   the var var(field) and 'val'.
  38. Ñ AEBuild [<flags>] <app (name|creator)> <aesuite> <aeevent> [<event parameters>]*  -
  39.   Build and send an apple-event. 'AEBuild' is apple's code of the same 
  40.   name. Each "event parameter" is two parameters, a parameter type and 
  41.   the data for the parameter. See the AEBuild doc for more details, 
  42.   :Tcl:SystemCode:think.tcl for examples. The flags are '-r' (wait for reply), 
  43.   '-q' (queue reply, in which case 'handleReply' (in appleEvents.tcl) is 
  44.   called with the reply as a parameter, and '-t <timeout>' specifies the 
  45.   timeout in ticks.
  46. Ñ alertnote message_string
  47.   This command will display message_string in a standard Macintosh alert box.
  48. Ñ alphaHelp - display Alpha help.
  49. Ñ ascii (see bindings).
  50. Ñ askyesno [-c] prompt
  51.   This command will display a Macintosh alert box with 'prompt' displayed
  52.   with the push buttons Yes and No. The command will return the 
  53.   string "yes" or "no". The '-c' flag specifies that a cancel button be 
  54.   used as well.
  55. Ñ backSpace - delete selection, or a single char if no selection.
  56. Ñ backwardChar - moves insertion one char back
  57. Ñ backwardCharSelect - extends selection one char back
  58. Ñ backwardDeleteWord - deletes previous word
  59. Ñ backwardWord - moves insertion one word back
  60. Ñ balance - selects smallest set of parens, braces, or 
  61.   brackets that encloses the current selection
  62. Ñ beep [-volume num] [-list | sndName]?
  63.   where -volume and -list are switches, while num and sndName are variables.
  64.   Ex:  beep -volume 3 "click in set 5"  play at volume 3 the sound named
  65.   "click in set 5" in the Alpha's snd resource.
  66.   Any sound stored in that resource can be used as well, so feel free to
  67.   paste a sound (with ResEdit) in the snd resource to have it available.
  68. Ñ beginningBufferSelect - extend selection to the 
  69.   beginning of the buffer
  70. Ñ beginningLineSelect - extend selection to the 
  71.   beginning of the line
  72. Ñ beginningOfBuffer - move insertion to the beginning 
  73.   of the buffer
  74. Ñ beginningOfLine - move insertion to the beginning of 
  75.   the line
  76. Ñ Bind  (see bindings)
  77. Ñ blink <pos> - blink cursor at 'pos'
  78. Ñ breakIntoLines <string> - return 'string' with 
  79.   carriage returns and spaces inserted to satisfy 
  80.   'leftFillColumn' and 'fillColumn' variables.
  81. Ñ bringToFront <winName> - Bring named window to front.
  82. Ñ buttonAlert <prompt> [<button>╔] - Create a dialog w/ the specified 
  83.   buttons, returning the one selected.
  84. Ñ capitalizeRegion - capitalize first word in selected region 
  85. Ñ capitalizeWord - capitalize word and move to its end
  86. Ñ centerRedraw - redraw window with current line in 
  87.   the middle.
  88. Ñ clear - clear selected text
  89. Ñ closeAll - close all windows
  90. Ñ colorTriple [<prompt>] [<red> <green> <blue>] - Prompts user to choose 
  91.   color. If specified, the input RGB value is used as the initial color on 
  92.   the colorpicker.
  93. Ñ copy - copy region
  94. Ñ cp <fromName>+ <toName>
  95.   This command will copy the file fromName and name the new file toName, 
  96.   overwriting any existing file. This command copies both data forks, and 
  97.   the Finder information. 
  98. Ñ createTagFile - searches all files in current file set 
  99.   and saves the locations of any function declarations
  100.   in a file called 'cTAGS'.
  101. Ñ createTMark <name> <pos> - create a temporary 'mark' 
  102.   at location 'pos'. 
  103. Ñ currentPosition - displays current and total bytes.
  104. Ñ cut - deletes and saves region
  105. Ñ deleteChar - delete char AFTER cursor
  106. Ñ deleteMenuItem [-m] <menu name> <item name> - Convert item to menu form 
  107.   and delete from specified menu. If '-m' specified, menu form conversion 
  108.   not done. 
  109. Ñ deleteModeBindings <mode> - Delete all bindings for specified mode.
  110. Ñ deleteSelection - delete current position, don't save
  111. Ñ deleteWord - delete word after cursor
  112. Ñ describeBinding - display the binding of the next typed key sequence. 
  113. Ñ deleteText <pos1> <pos2> - remove text between 'pos1' 
  114.   and 'pos2'
  115. Ñ dialog [<-w width>|<-h height>|<-b title l t r b>|<-c title val l t r b>|
  116.             <-t text l t r b>|<-e text l t r b>|<-r text val l t r b>|
  117.             <-p l t r b>]+ 
  118.   Create and display a dialog.  '-w' and '-h' allow width and height of 
  119.   dialog window to be set.  '-b', '-c', '-r', '-t', '-e' and '-p' allow 
  120.   buttons, checkboxes, radio buttons, static text, editable text and gray 
  121.   outlines to be created, respectively.  All control types (except gray 
  122.   outlines) require specification of a title or text, together with left, 
  123.   top, right, and bottom coordinates.  Checkboxes and radioboxes have an 
  124.   additional parameter, the default value.  At least one button must be 
  125.   specified.  The return value is a list containing resulting values for 
  126.   all buttons, radioboxes, checkboxes, and editable textboxes (static text 
  127.   is ignored).  Buttons have value '1' if chosen, '0' otherwise.  The 
  128.   dialog box exits at the first button press.
  129.  
  130. Ñ dirs - show current directory stack. See 'pushd' and 'popd'.
  131. Ñ display [-w <win>] <pos> - move pos's line to top of screen.
  132. Ñ displayMode <mode> - Up to four characters of the 'mode' string are 
  133.   displayed in the status line at the bottom of a window.
  134. Ñ dosc [<-c 'sign' | -n appName>] [-k 'clas'] [-e 'evnt'] <-s string | -f fileName> [<-t timeout|-r>]
  135.   Send an AppleEvent, by default class 'misc', event 'dosc'.
  136.    -c 'sign' 
  137.            "sign" is a four-letter creator signature of a running application.
  138.    -n appName
  139.            "appName" is the name of a running application.
  140.    -k 'clas'
  141.            "clas" is a four-letter event class.
  142.    -e 'evnt'
  143.            "evnt" is a four-letter event class.
  144.    -s string
  145.            "string" is the text of a script to send to the other app.
  146.    -f fileName
  147.            "fileName" is the complete or relative pathname of a file the other 
  148.            application should execute.
  149.    -t timeout
  150.            "timeout" is the number of ticks Alpha should wait for a response. A 
  151.            timeout of "0" means wait forever.
  152.    -r
  153.            Do not wait for reply.
  154.    -q
  155.            Queue reply.
  156.            
  157.    If neither of the '-c' and '-n' options is chosen, the PPC Browser is 
  158.    used. Either '-s' or '-f' must be chosen. Thus, you can have "Alpha 
  159.    5.02" and "Alpha 5.02 Copy" sending Apple events to each other, or they 
  160.    can send events to a remote server such as Apple's ToolServer. 
  161.    "$HOME:Tcl:UserCode:createStuffitArchive.tcl" contains examples of 
  162.    controlling Stuffit Deluxe via this command.
  163. Ñ downcaseRegion - changes all uppercase letters to 
  164.   lowercase in current region
  165. Ñ downcaseWord - changes all uppercase letters to 
  166.   lowercase in current word
  167. Ñ dumpColors - dump current foreground and background
  168.   colors into the current buffer in Alpha-readable
  169.   format.
  170. Ñ echo <string>* - echo the strings (used 
  171.   in shells).
  172. Ñ edit [-r] [-m] [-c] [-w] [-g <l> <t> <w> <h>] <name> - Open a file in new 
  173.   window. '-c' means don't prompt for duplicate win if file already open.
  174.   '-r' means open the file read-only. '-m' means omit the function titlebar 
  175.   menu and present only the marks titlebar menu, which is labeled with the 
  176.   contents of 'markLabel'. The '-g' option allows left and top coords to 
  177.   be specified, plus width, and height. All or none. '-w' allows you to
  178.   bypass the "Wrap" dialog for files with long rows.
  179. Ñ enableMenuItem <menuName> <item text> <on|off> - Either enable or 
  180.   disable the menu item of user menu 'menuName' that has text '<item 
  181.   text>'. Note that unless the menu is not only created, but also already
  182.   inserted, this command has no effect. 
  183. Ñ endBufferSelect - extend selection to the end of the 
  184.   buffer
  185. Ñ endKeyboardMacro - stop recording keyboard macro
  186. Ñ endLineSelect - extend selection to the end of line
  187. Ñ endOfBuffer - move insertion to the end of the buffer
  188. Ñ endOfLine - move insertion to the end of the line
  189. Ñ enterReplaceString - use current selection, if any, for future 
  190.   replacements (in search dialog).
  191. Ñ enterSearchString - use current selection, if any, for future searches.
  192. Ñ evaluate - evaluates hilited text, or entire window if 
  193.   nothing is hilited. 'evaluat'ing means that whatever 
  194.   bindings or macro definitions are present in the 
  195.   evaluated text take effect
  196. Ñ eventHandler [class] [event] [proc] - Register 'proc' to handle the class 
  197.   and event specified. Class and event are each 4 char args. 'proc' takes 
  198.   a single argument that specifies the incoming event according to the 
  199.   syntax here. There is currently no provision for a reply.
  200. Ñ exchangePointAndMark - exchange the current 'mark' 
  201.   w/ the current insertion point
  202. Ñ execAbbrev - looks at current word and tries to expand it. Labels are 
  203.   specified using 'abbrev'.
  204. Ñ execute - prompt user for a function or macro. The 
  205.   tab key acts as a "completion" command.
  206. Ñ executeKeyboardMacro - execute the current keyboard 
  207.   macro
  208. Ñ fileInfo - prompts for a file, and displays type, 
  209.   creator, sizes of both data and resource forks, last
  210.   modification time, and creation time
  211. Ñ fileRemove - prompts for a file, and removes it
  212. Ñ find - bring up the find dialog
  213. Ñ findAgain - repeat search forward
  214. Ñ findAgainBackward - repeat search backward
  215. Ñ findFile [<path>] - open a file in a new window. An optional path parameter
  216.   specifies a default directory or file.
  217. Ñ findInNextFile - search next file.
  218. Ñ findTag - prompt user for a function name and attempt 
  219.   to use the file 'cTAGS' to locate the function's 
  220.   definition
  221. Ñ float -m <menu> [<-h|-w|-l|-t|-M> <val>] [-n winname] [-z tag] -
  222.   Takes a created menu (not necessarily in the menubar), and makes a 
  223.   floating window out of it. Returns integer tag that is used to remove 
  224.   the window. NOT DYNAMIC!  W/ no options returns all currently defined menus.
  225.   Displayed w/ system floating window WDEF if system 7.5, plainDBox 
  226.   otherwise. -h through -M change width, height, left margin, top margin, and
  227.   margin between buttons. -z allows a ten-char tag to be specified for 
  228.   'floatShowHide'.
  229. Ñ floatShowHide <on|off> <tag> - Shows or hides all floats w/ specified 
  230.   tag. Tags of current modes are automatically shown/hidden.
  231. Ñ forwardChar - move insertion one character forward
  232. Ñ forwardCharSelect - extend selection one character 
  233.   forward
  234. Ñ forwardWord - move insertion one word forward
  235. Ñ freeMem - give a rough approximation of the current 
  236.   memory reserves of ALPHA
  237. Ñ get_directory [-p <prompt>]
  238.   This command will display a standard Macintosh file dialog and request the user 
  239.   select a folder. The command will return the selected folder's full path name, or an 
  240.   error if the Cancel button was selected.
  241. Ñ getAscii - displays the ASCII code for character at 
  242.   current insertion point
  243. Ñ getChar - waits for a keystroke, returns ascii.
  244. Ñ getModifiers - returns current modifiers mask. "OR" of several values, 
  245.     cmdKey                        = 0x01,                        /* Bit 0 of high byte */
  246.     shiftKey                    = 0x02,                        /* Bit 1 of high byte */
  247.     alphaLock                    = 0x04,                        /* Bit 2 of high byte */
  248.     optionKey                    = 0x08,                        /* Bit 3 of high byte */
  249.     controlKey                    = 0x10,                        /* Bit 4 of high byte */
  250.     rightShiftKey                = 0x20,                        /* Bit 5 of high byte */
  251.     rightOptionKey                = 0x40,                        /* Bit 6 of high byte */
  252.     rightControlKey                = 0x80,                        /* Bit 7 of high byte */
  253. Ñ getColors - returns list of colors/hypertext for current document. 
  254.   Format is list of lists, each sublist consisting of file offset, color 
  255.   index, and possibly a hypertext command.
  256. Ñ getfile [<prompt>] [<path>]
  257.   This command will display an SFGetFile() and return the full path name of the 
  258.   selected file, or an error if CANCEL button was selected.  An optional path 
  259.   parameter specifies a default directory or file.
  260. Ñ getFileInfo <file> <arr> - Given a file name, creates an array called 
  261.   'arr' in the current context, containing fields 'created', 'creator', 
  262.   'modified', 'type', 'datalen', and 'resourcelen'. 'created' and 
  263.   'modified' are in a form suitable for the command 'mtime'.
  264. Ñ getGeometry [win] - return a TCL list containing the left 
  265.   edge of the current window, the top, the width, and height.
  266. Ñ getline <prompt> <default>
  267.   This command will display a Macintosh alert box with prompt displayed, a 
  268.   text edit field with default initially in the field, and with the push 
  269.   buttons OK, Cancel.. The command will return the text entered into the 
  270.   text edit field by the user, or an empty string if the user selected the 
  271.   Cancel button. 
  272. Ñ getMainDevice - return a list containing the left, top, right, and 
  273.   bottom of the rectangle defining the main device.
  274. Ñ getMark - return the current mark.
  275. Ñ getNamedMarks [-w <win>] [-n] - 
  276.   return list of all permanent marks in open files. Each
  277.   element of a list describes one mark as a sublist of the mark's name, 
  278.   the complete pathname of the mark's file, the position of the first 
  279.   character in the first line displayed, the current position, and the 
  280.   end of the selection if text is hilited, or the current position again 
  281.   if there is no hilited section. '-w' allows window name to be applied 
  282.   as filter, '-n' means only names will be returned.
  283. Ñ getPathName - prompt the user with an SFGetFile dialog and return 
  284.   complete pathname.
  285. Ñ getPos [-w <win>] - return the current insertion point
  286. Ñ getScrap - returns system TEXT scrap.
  287. Ñ getSelect - return the currently selected text, if 
  288.   any.
  289. Ñ getText [-w <win>] <pos1> <pos2> - return the text between 'pos1' 
  290.   and 'pos2'. '-w' can be used to specify a window.
  291. Ñ getTMarks - Return a list of temporary marks. Each item of the returned 
  292.   list is a sublist containing the mark name, the complete pathname of the 
  293.   mark, and the start and finish of the selection named by the mark. The 
  294.   following is an example of the result: 
  295.  
  296.     {{temp1 External:file.c 1312 1315} {temp2 Internal:it.h 111 111}} 
  297.  
  298. Ñ getWinInfo [-w <win>] <arr> - Creates an array in current context 
  299.   containing info about either the current or a specified window. Array 
  300.   has fields 'state', 'platform', 'read-only', 'tabsize', 'split', 
  301.   'linesdisp' (num lines that can be seen in the window), 'currline' 
  302.   (first line displayed), and 'dirty'.
  303. Ñ glob [-i] [-t <TYPE>] [-c <CRTR>]
  304.   The original glob provided by the UNIX version of tcl was not quite 
  305.   adequate for the more complex Macintosh file system. Issues such as 
  306.   invisible file handling, Finder type and creator filtering, and space 
  307.   handling in file names. Release 6 of tcl has dealt with the original 
  308.   problem with spaces in filenames, but the following options are provided 
  309.   to deal with additional Macintosh issues. 
  310.  
  311. Anyway, the new glob now takes several options. They are:
  312.     -i    This option causes glob to list invisible files also.
  313.     -t TYPE    This option causes glob to only list file with the 
  314.         indicated Finder file typeTYPE. This option may be 
  315.         used with the -c option.
  316.     -c CRTR    This option causes glob to only list file with the 
  317.         indicated Finder file creatorCRTR. This option may 
  318.         be used with the -t option.
  319.         Also note that the original glob would skip dot files
  320.         (i.e., file names the begin with a period) 
  321.         in the listing, unless the pattern began with a period.
  322.         Tickle extends this concept one step further on the
  323.         Macintosh, and skips spot files (i.e., file names that 
  324.         begin with 'Ñ'), unless the pattern starts with a spot.
  325. Ñ goto <pos> - goto the position 'pos'.
  326. Ñ gotoMark - goto named mark, use 'mark' in macros.
  327. Ñ gotoTMark <name> - goto the temporary mark 'name'.
  328. Ñ icon [-f <winName>] [-c|-o|-t|-q] [-g <h> <v>] - Having to do w/ 
  329.   iconifying windows. '-c' means close (iconify) window, '-o' open, '-t' 
  330.   toggle open/close, '-q' returns either a '1' for an iconified window or a 
  331.   '0' for an uniconified window, and '-g' moves the icon to horizontal 
  332.   position <h> and vertical position 'v'. Options are executed as they 
  333.   are parsed, so the '-f' option, if present, should always be first. 
  334. Ñ icURL <URL> - passes arg to Internet Config, if present. Error if not 
  335.   present. 
  336. Ñ icGetPref [<-t <type>] <pref name> - Gets preference from 
  337.   Internet Config. '-t' allows type to be set, '0' returns a string 
  338.   (default), '1' returns a path name, commonly used for helper apps. A 
  339.   <pref name> of 'all' returns all valid preferences.
  340. Ñ icOpen - Opens Internet Config
  341. Ñ insertAscii - prompts for an ASCII code and inserts
  342.   into text.
  343. Ñ insertColorEscape <pos> <color ind> [hypertext func] - Create a color 
  344.   or style "point" for documentation purposes. Look at the file 
  345.   "docColors.tcl" for examples. The hypertext func is only used when the 
  346.   "point" is underline. See 'getColors' for info about the current file.
  347. Ñ insertFile - prompts for a file name and inserts the
  348.   corresponding file into the current window. Not
  349.   undoable.
  350. Ñ insertMenu <name> - insert the previously created user menu 'name' into 
  351.   the menuBar. 
  352. Ñ insertPathName - present the user w/ a SFGetFIle dialog 
  353.   and paste the complete path-name of the chosen file
  354.   into the current window
  355. Ñ insertText [-w <win name>] <text>* - Insert 'text' at the current 
  356.   insertion point. Mark is unchanged.
  357. Ñ insertToTop - make the line that the insertion point 
  358.   is on the first line shown, and display the current 
  359.   line number along w/ the total number of lines in file
  360. Ñ isearch - incremental search: searches w/o a dialog,
  361.   searches as you type the search pattern. Does not do
  362.   regular expression searches. 'matchWords' 
  363.   automatically set to false.
  364. Ñ iterationCount - allows actions to be repeated many times. "control-u 44 
  365.   =" inserts 44 '='s into current window.  Also can be used to execute any 
  366.   function or macro (including the keyboard macro) many times.  Defaults to 
  367.   4.
  368. Ñ keyAscii - insert ascii representation (in decimal)
  369.   of the keydown event, plus a modifier string, if 
  370.   necessary.
  371. Ñ keyCode - insert the key code along w/ a string 
  372.   representing and modifiers into the current window.
  373.   Can be used to create bindings in 'Alphabits'.
  374. Ñ killLine - kill text from insertion point to the end 
  375.   of the line. If the line has no text, delete the line 
  376.   and move succeeding lines up one.
  377. Ñ killWindow - kill current window
  378. Ñ largestPrefix <list> - Returns the longest prefix contained in all 
  379.   strings of 'list'.
  380. Ñ launch -f <name> - launch the named app into the background. Note that 
  381.   for some yet unexplained reason, some applications (MicroSoft Word) 
  382.   won't launch completely in the background. 'launch'ing such 
  383.   applications won't insert the application into any system menu that 
  384.   specifies running applications (although "About the Finder..." will 
  385.   list it. The only way to get to such an app is through Alpha's 
  386.   'switchTo', after which the application will finish launching. The '-f' 
  387.   option gets around this by launching the application in the foreground 
  388.   instead.
  389. Ñ lineStart <pos> - return the position of the start of
  390.   the line 'pos' is on.
  391. Ñ listpick [-p <prompt>] [-l] [-L <def list>] <list>
  392.   This command will display a dialog with the list displayed in a List Manager 
  393.   list. If the user presses the Cancel button, an empty string is returned. If 
  394.   the user selects the Open button, or double clicks an item in the list, that 
  395.   item will be returned. If '-l' is specified, than the return is a list of 
  396.   items.
  397. Ñ lookAt [-w <name>] <pos> - return the 'pos'th character of the 
  398.   current file, or the file named by <name> if the '-w' option is specified.
  399. Ñ markHilite - This is the 'Hilite' from the 'Edit'
  400.   menu. If there is a currently hilited selection, the 
  401.   selection is unhilited, leaving the mark and the 
  402.   insertion point around the old selection. If there 
  403.   is not a selection, the region between the insertion 
  404.   point and the mark is selected.
  405. Ñ markMenuItem [-m] <menuName> <item text> <on|off> [<mark char>] - Either mark or unmark
  406.   the menu item of user menu 'menuName' that has text '<item text>'. 
  407.   Note that unless the menu is not only created, but also already
  408.   inserted, this command has no effect. 
  409. Ñ matchBrace - moves the insertion point to the 
  410.   character that matches the character after the current 
  411.   insertion point
  412. Ñ matchIt <brace char> <pos> [<limit>] - Return pos of matching brace. Recognizes 
  413.   parenthesis, square brackets, and curly braces. Optional third argument 
  414.   specifies how many characters to search.
  415. Ñ maxPos [-w <win>] - returns the number of characters in the front
  416.   window.
  417. Ñ Menu [-s] [-n <name>] [-i <num] [-m] [-M <mode>] [-p <procname>] <list of menu items> - 
  418.   Defines a new menu named 'name' (if provided w/ '-n' option). The menu is not 
  419.   yet inserted into the menubar. The menu commands may be nested for 
  420.   heirarchical menus, see 'AlphaBits.tcl' for examples. Alpha massages the 
  421.   function names to make them look better in the menus. 
  422.   '-c'            Ignore any menu meta-chars. Can also be done on a per-item basis 
  423.                   by appending an ampersand ('&') to the end of an item.
  424.   '-s'            Use system menu definition proc (faster).
  425.   '-n <num>'    Resource id of icon suite to use for menu title. 'ics#' 
  426.                 is the only resource that is really necessary.
  427.   '-n <name>'    Name the menu. Not necessary for submenus.
  428.   '-m'            No menu form. If not supplied, each menu item is split into 
  429.                   words at each capitalized letter.
  430.   '-p <name>'     The tcl proc named by 'name' is called w/ the menu's name
  431.                   and the item's contents when the item is chosen.
  432.   '-M <mode>'    Specifies that any bindings created by the menu are 
  433.                   specific to a given mode. This is important because mode-specific
  434.                   bindings over-ride global bindings.
  435. Ñ message <string> - prints 'string' on the status line.
  436. Ñ mkdir <name> - creates a directory (folder) named 
  437.   'name' in the current directory.
  438. Ñ mousePos - Returns list <row,col> of mouse position, if the mouse is 
  439.   currently over the active window. Otherwise, return error (catch w/ 
  440.   'catch').
  441. Ñ moveInsertionHere [-last] - move the insertion point to the 
  442.   first (or last) line displayed
  443. Ñ moveFile <fromName> <toName>
  444.   This command will move the file fromName to toName, overwriting any 
  445.   existing file. The move can not be made across volume (disk drives) 
  446.   boundaries. 
  447. Ñ moveWin [win name] <left> <top> - moves current or specified window. 
  448.   The window name can be "StatusWin".
  449. Ñ mtime <time> [long|short|abbrev]
  450.   Returns a date and time string using the Macintosh International Utilities. The 
  451.   long/short/abbrev specification corresponds to the date. These are the following 
  452.   formats:
  453.     short        3/16/92 9:20:46 PM
  454.     abbrev    Mon, Mar 16, 1992 9:20:49 PM
  455.     long        Monday, March 16, 1992 9:20:43 PM
  456.   The returned value actually is in the form of a list. To get text as 
  457.   above, run the result through 'join', as in "join [mtime [now] short]".
  458. Ñ nameFromAppl '<app sig>' - Interrogates the desktop database for the first 
  459.   existing app that has the desired signature. <app sig> is four chars 
  460.   inside single quotes.
  461. Ñ new [-g <l> <t> <w> <h>] [-n <name>] - opens an untitled window. Can optionally 
  462.   provide left and top coordinates, plus width and height. All or none.
  463. Ñ nextLine - move insertion point to next line
  464. Ñ nextLineSelect - extend selection to the next line
  465. Ñ nextLineStart <pos> - return the position of the start 
  466.   of the next line after position 'pos'.
  467. Ñ nextSentence - go to next sentence ("fill.tcl").
  468. Ñ nextWindow - select next window
  469. Ñ now
  470.   Returns the current time as Macintosh seconds. This is the number of seconds that 
  471.   have elapsed since Midnight Jan 1, 1904.
  472. Ñ oneSpace - converts whitespace surrounding insertion
  473.   into a single space.
  474. Ñ openLine - insert a new line following the current 
  475.   one and move the insertion point to it
  476. Ñ otherPane - If window is split, select the other pane.
  477. Ñ pageBack - display prev screenful, move the
  478.   insertion point if 'moveInsertion' enabled
  479. Ñ pageForward - display next screenful, move the
  480.   insertion point if 'moveInsertion' enabled
  481. Ñ pageSetup - display the printing PageSetup dialog.
  482. Ñ paste - insert the last chunk of text created by 'cut' 
  483.   or 'copy'
  484. Ñ performSearch  [options╔] <pattern> <pos> - as for 'search' but also
  485.   selects the range of characters which are found, and ensures Alpha's
  486.   internal state is consistent for following replace/replaceAll/...
  487.   commands.
  488. Ñ popd - Pop top dir off dir stack and 'cd' to it.
  489. Ñ posToRowCol <pos> - converts from absolute position to row, col.
  490. Ñ prefixChar - used to further modify the next keystroke 
  491.   combination, in the same manner as using the shift key 
  492.   in the next keystroke
  493. Ñ previousLine - move insertion point to the previous 
  494.   line
  495. Ñ prevLineSelect - extend selection to the previous line
  496. Ñ prevSentence - go to previous sentence ("fill.tcl").
  497. Ñ prevWindow - select previous window
  498. Ñ print - print front window
  499. Ñ processes - returns info of active processes. A list of lists, each 
  500.   sublist contain a file-name, an application signature, the application 
  501.   memory size, and the number of ticks the application has been active.
  502. Ñ prompt <prompt> <default> [<name> <menu item>*] - prompt dialog to 
  503.   the user with a prompt string and a default value. The prompt dialog can 
  504.   optionally include a popup menu specified by 'name' and the succeeding 
  505.   strings. Selection of the popup menu items inserts the item text into the 
  506.   editable dialog item. 'Prompt' returns the value of the editable item. 
  507.   If the 'Cancel' button is selected, the tcl returns an error and your 
  508.   script will be stopped unless you execute the command from 'catch'.
  509. Ñ pushd [<dir>] - If 'dir' specified, push current folder into directory 
  510.     stack and 'cd' to dir. Otherwise, swap current dir w/ top of dir stack.
  511. Ñ putfile <prompt> <original>
  512.   This command will display an SFPutFile() and return the full path name of the 
  513.   selected file, or an empty string if CANCEL button was selected. Original is the 
  514.   default name displayed for the user.
  515. Ñ putScrap [<string>]+ - Concatenate strings together into the system 
  516.   scrap. The scrap can be appended to through calls of the form 'putScrap 
  517.   [getScrap] " another word"'.
  518. Ñ pwd
  519.   This command will return the current working directory, ending in a colon.
  520. Ñ quit - quits ALPHA
  521. Ñ rectMarkHilite - creates a rectangular selection 
  522.   between the mark and the insertion point.
  523. Ñ redo - redo the next action that has been undone but 
  524.   not redone
  525. Ñ regModeKeywords [options] <mode> <keyword list> - Set keywords and comments that 
  526.   Alpha can recognize to color them. Specifically, in mode <mode>, every 
  527.   keyword specified in the list is colored non-black (blue, by default). 
  528.   Comments, if specified by '-e' or '-b' below, are colored red by defualt.
  529.     -a                                Keywords will be *added* to existing mode
  530.                                     keywords. The new keywords can be a different
  531.                                     color than older keywords. This flag can also be
  532.                                     used to modify other attributes, but it cannot be
  533.                                     used to modify colors of existing keywords.
  534.     -m <c>                            Specify a magic character. Every word beginning with the 
  535.                                     magic character is a keyword.
  536.     -e <commentstr>                    Specify a string that begins comments that last to 
  537.                                     the end of the line. 
  538.     -b <comment beg> <comment end>    Specify a pair of strings that bracket a 
  539.                                     comment.
  540.     -c <color>                        Comment color.
  541.     -k <color>                        Keyword color.
  542.     -s <color>                        String color. Alpha can color single-line
  543.                                     strings only, using the simple heuristic
  544.                                     of assuming the first two double quotes
  545.                                     constitute a string. 
  546.     -i <char>                        Specify a character to display differently.
  547.                                     Commonly used for curly braces, etc.
  548.     -I <color>                        Color of above characters.
  549.     Keywords must be less than 20 characters long.
  550. Ñ removeArrDef <var> <field> - Remove the pernament definition of 
  551.  'var(field)'. See 'addDef' and 'addArrDef'.
  552. Ñ removeDef <var> - Remove the permanent definition of 'var'.
  553. Ñ removeFile <fileName>
  554.   This command will delete the file or folder 'fileName'.
  555. Ñ removeMenu <name> - remove menu 'name' from menubar, except those 
  556.   specified by previous 'makeMenuPermanent' calls.
  557. Ñ removeTMark <name> - remove temporary mark.
  558. Ñ replace - replace the current selection
  559. Ñ replaceAll - replace all further occurrences in the current file or
  560.   set of files.
  561. Ñ replace&FindAgain - replace the current selection and find next 
  562.   occurrence.
  563. Ñ replaceString [<str>] - specifies replacement string. Returns current 
  564.   replacement string if no arg.
  565. Ñ replaceText ?-w win? <pos1> <pos2> [text]+ - replaces the text
  566.   between 'pos1' and 'pos2' with 'text', where 'text' can be any number 
  567.   of arguments. Leaves insertion at end, mark at beginning of inserted 
  568.   text. 
  569. Ñ restoreVars - restore variables to saved state, 
  570.   see 'saveVars'
  571. Ñ revert - revert the file to its last saved version
  572. Ñ rmdir <dirname> - remove a directory (folder)
  573. Ñ rowColToPos [-w <win>] <row> <col> - converts to abosolute position.
  574.   Accepts optional -w parameter that allows window to be specified.
  575. Ñ rsearch - reverse incremental search, see 'isearch'.
  576. Ñ save - save current window
  577. Ñ saveAs ?-f? [def name] - save current window with new name. Optionally 
  578.   takes a default filename. Returns complete path of saved file, if ok hit, 
  579.   otherwise TCL_ERROR returned. If '-f' flag given, then we force the save
  580.   without any standard-file dialog.
  581. Ñ saveVars - save variable state, see 'restoreVars'
  582. Ñ scrollDownLine - same action as that which occurs when 
  583.   the down arrow in the vertical scrollbar is selected
  584. Ñ scrollLeftCol - same action as that which occurs when
  585.   the left arrow in the horizontal scrollbar is selected
  586. Ñ scrollRightCol - same action as that which occurs when
  587.   the right arrow in the horizontal scrollbar is 
  588.   selected
  589. Ñ scrollUpLine - same action as that which occurs when 
  590.   the up arrow in the vertical scrollbar is selected
  591. Ñ search  [options╔] <pattern> <pos> - 
  592.   -f <num>        - go forward?
  593.   -r <num>        - regular expression?
  594.   -s            - save previous search string and search flags.
  595.   -i <num>        - ignore case?
  596.   -m <num>        - match words?
  597.   -n            - failed search still returns TCL_OK, but null string.
  598.   -l <limit>    - limit on how search goes.
  599.   --             - next arg is the pattern.
  600.  
  601.   Searches for 'pattern' from position 'pos'.  If the search succeeds, a 
  602.   list of two positions will be returned.  The first is the starting position 
  603.   of the match, the second is one past the last character. If no '-n', 
  604.   TCL_ERROR returned.  See also performSearch
  605. Ñ searchString [<str>] - allows search string to be specified. Returns 
  606.   current searchstring if no arg.
  607. Ñ select [-w <win>] <pos1> <pos2> - selects the text between 'pos1' 
  608.   and 'pos2'.
  609. Ñ selEnd [-w <win>] - returns the end of the hilited selection, or 
  610.   the current insertion point if no text is selected.
  611. Ñ sendOpenEvent [filler] <app name> <file name> - Send an open doc event to 
  612.   another currently running application. If 'filler' is noReply, then a 
  613.   reply is not requested. Otherwise, we wait for a reply and 'filler' is 
  614.   ignored. 
  615. Ñ setFileInfo <file> <field> [arg] - Allows some information to be set 
  616.   for files. Settable fields are 'modified', 'created', 'creator', and 'type'.
  617.   All take an argument except 'resourcelen' which just removes the resource fork. 'file' is a complete pathname.
  618. Ñ setFontsTabs - bring up font and tab dialog
  619. Ñ setMark - set the current mark to the insertion point
  620. Ñ setNamedMark [name disp pos end] - set named mark. If optional arguments are 
  621.   present, the mark is created without prompting user. 'disp' is the 
  622.   character position of the start of the first line to be displayed, 
  623.   while 'pos' and 'end' bracket the text to be selected.
  624. Ñ setWinInfo [-w <win>] <field> <arg> - Sets a piece of data about either 
  625.   the current or a specified window. Settable fields 'platform', 'state', 
  626.   'read-only', 'tabsize', 'dirty', and 'shell'. 'shell' means that dirty 
  627.   flag ignored and undo off.
  628. Ñ shell - open the Tcl shell.
  629. Ñ sizeWin [win name] <width> <height> - sets size of current or specified window.
  630.   The window name can be "StatusWin", although only the width can be 
  631.   changed.
  632. Ñ spacesToTabs - convert spaces in selection to tabs
  633. Ñ specToPathName [hex data] - given an FSSpec in hex form (as that 
  634.   returned by aebuild, for instance, see the definition of thinkFileName 
  635.   in :Tcl:SystemCode:think.tcl), return a complete pathname.
  636. Ñ splitWindow [percent] - toggle having window split into two panes. 
  637.   Optional arg specifies percent of window to allocate to the first pane. 
  638. Ñ startEscape - used to further modify the next 
  639.   keystroke combination, in the same manner as using the 
  640.   shift key in the next keystroke
  641. Ñ startKeyboardMacro - start recording keyboard macro
  642. Ñ statusPrompt <prompt> [<func>] - Prompt in the status window. If 'func' 
  643.   is present, call this routine at each key-press with the current 
  644.   contents of the status line and the key, insert into statusline 
  645.   whatever is returned by the func. Command-v pastes the current (<80 
  646.   char) clipboard contents on the status line.
  647. Ñ substituteVars <string> - Takes a single string and
  648.   substitutes for all variables inside it, regardless of
  649.   depth. Unfortunately, you currently need to make 'global var' 
  650.   declarations in the proc you call this for each 'var' that might need 
  651.   to be substituted in the string (see proc.tcl for examples).
  652. Ñ switchTo <appName> - Switches to application 'appName'.
  653. Ñ tab - insert a tab
  654. Ñ tabsToSpaces - convert tabs in selection to spaces.
  655. Ñ ticks
  656.   Returns the current TickCount. Ticks are 60ths of a seconds. TickCount is the 
  657.   number of ticks since the Macintosh was started. The command:
  658.         puts stdout [expr "[ticks] / 60"]
  659.   will print the number of seconds since the Macintosh was booted.
  660. Ñ toggleScrollbar - toggles horizontal scrollbar on frontmost window. 
  661.   Will not succeed if scrollbar scrolled.
  662. Ñ traceFunc on <funcName> <winName> Trace 'funcName', send output to 
  663.                                     'winName'. 
  664.   traceFunc off                        Turn function tracing off.
  665.   traceFunc status                    Display current tracing status.
  666. Ñ unascii  (see bindings)
  667. Ñ unbind  (see bindings)
  668. Ñ undo - undo the last action that has not been undone
  669. Ñ unfloat <float num> - removes specified floating window. W/ no options 
  670.   lists all floating windows.
  671. Ñ upcaseRegion - convert all lowercase letters to 
  672.   uppercase in the current region
  673. Ñ upcaseWord - convert all lowercase letters to 
  674.   uppercase in the current word
  675. Ñ version - Return string of the form "Alpha Version 5.31, Feb. 15, 1993".
  676. Ñ watchCursor - turns the cursor into a a watch cursor.
  677. Ñ wc <file>... - counts chars, words, lines of input files.
  678. Ñ winNames [-f] - return a TCL list of all open windows. If '-f' option 
  679.   specified, complete pathnames are returned.
  680. Ñ wrap - see the section on "Fill" routines.
  681. Ñ wrapText
  682. Ñ xtclcmd [-f filename] <cmdname> [argument_list]*
  683.   This command will load the external command cmdname and pass it the argument 
  684.   list [ cmdname argument_list... ]. External command are code resources of type 
  685.   XTCL. They may be located in the resource fork of the tickle application, or they 
  686.   may be located in a file named XTCL File in the same directory as the tickle 
  687.   application. If the optional -f filename is included, the external command will first 
  688.   be loaded from filename before the other two files.
  689.   See the appendix for a detailed description of the external tcl command interface. 
  690.   See the accompanying sources for an example of writing an XTCL.
  691. Ñ yank - insert the last piece of deleted text of less
  692.   than 1k. Consecutive deletes are concatenated.
  693.   together.
  694. Ñ zapInvisibles - removes chars < ascii 32, except for
  695.   LF's and CR's.
  696. Ñ zoom - zooms the current window
  697.